home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / sbin / update-dictcommon-aspell < prev    next >
Text File  |  2009-05-15  |  873b  |  48 lines

  1. #!/usr/bin/perl -w
  2.  
  3. use Debian::DictionariesCommon q(:all);
  4.  
  5. dico_checkroot ();
  6.  
  7. my $cachedir   = "/var/cache/dictionaries-common";
  8. my $class      = "aspell";
  9. my %locales    = ();
  10.  
  11. updatedb ($class);
  12. build_emacsen_support ();
  13. build_squirrelmail_support ();
  14.  
  15. build_jed_support ();
  16.  
  17. system ("aspell-autobuildhash") == 0
  18.     or die "Error running aspell-autobuildhash\n";
  19.  
  20.  
  21. __END__
  22.  
  23. =head1 NAME
  24.  
  25. update-dictcommon-aspell - rebuild aspell database and emacsen stuff
  26.  
  27. =head1 SYNOPSIS
  28.  
  29.  update-dictcommon-aspell
  30.  
  31. =head1 DESCRIPTION
  32.  
  33. WARNING: Not to be used from the command line unless you know very well what you are doing.
  34.  
  35. This script, when called from aspell dict package postinst or postrm will
  36. rebuild aspell database as well as squirrelmail, jed and emacsen stuff.
  37.  
  38. =head1 SEE ALSO
  39.  
  40. The dictionaries-common policy
  41.  
  42. =head1 AUTHORS
  43.  
  44. Rafael Laboissiere,
  45. Agustin Martin
  46.  
  47. =cut
  48.